home *** CD-ROM | disk | FTP | other *** search
- /****i* SOURCE_FILE/INFO
- *
- * NAME
- * App.js
- *
- * USAGE
- * Part of Netobjects JavaScript Library.
- *
- * COPYRIGHT
- * Copyright ⌐ 2000-2005 Website Pros, Inc.
- * All Rights Reserved.
- *
- * This is an unpublished work protected by Website Pros, Inc.
- * as a trade secret, and is not to be used or disclosed except as
- * expressly provided in a written license agreement executed by
- * you and Website Pros, Inc.
- *
- * <copyright@websitepros.com>
- *
- * NOTES
- * JavaScript code.
- *
- *****/
- //if (!IS.isModuleInitialized("IS.NOF.ecomm.App"))
- {
- /****h* NOF_JavaScript_Library/NOF.ecomm.App
- *
- * NAME
- * NOF.ecomm.App
- *
- * DESCRIPTION
- * Ecomm html application class.
- *
- ****/
- /*
- * constructor
- * @param _name
- */
- function NOF_Ecomm_App( _name ){
- this.__proto__ = NOF_Ecomm_App.prototype;
- this.SUPER( _name, "Ecomm/properties/ecomm" );
- }
-
- NOF_Ecomm_App.inherits( NOF.HTML.App );
- //NOF.ecomm.__proto__.App = NOF_Ecomm_App;
-
- //alert("ecommApp \n" + NOF.ecomm.App);
- }